Skip to content

Instantly share code, notes, and snippets.

@carlosasin
carlosasin / iOS-7-web-app.html
Last active December 11, 2025 00:26 — forked from tfausak/ios-8-web-app.html
HTML - headers web app ios
<!doctype html>
<html>
<head>
<!-- Run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Make the status bar black with white text. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
@navarrothiago
navarrothiago / README.md
Last active December 11, 2025 00:25
Turn your smartphone or tablet camera into a WebCam to make video conference in Linux

Plant Intelligence and the Imaginal Realm (Alex)

Why we make things and why it matters (Sherman)

The Wisdom of Insecurity

The most Human Human

Built to Sell

@Jonny-exe
Jonny-exe / syncthing-setup-exclusively-with-CLI.md
Last active December 11, 2025 00:23
syncthing setup exclusively with CLI

After long searching I did not find a good description of how to set up Syncthing that works exclusively via CLI without using a Web browser on the devices.

This is useful for example on a headless Raspberry Pi without proxying web-traffic through SSH or with port-forwarding limitations. In this example we will want to share the default folder from Machine A with Machine B

Machine A Machine B
@hemebond
hemebond / 0_article.md
Last active December 11, 2025 00:21
A SaltStack AWS Auto Scaling Solution

A SaltStack AWS Auto Scaling Solution

Overview

The AWS Auto Scaling Goup, configured with a customised Cloud-Init file, sends a notification to an SNS Topic, which in turn passes it onto an SQS queue that the Salt Master is subscribed to. A Reactor watches for the auto scaling events and pre-approves the new minion based on its Auto Scaling group name and instance ID.

Salt Master Configuration

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 11, 2025 00:12
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@nazwadi
nazwadi / python_bash_font
Created September 23, 2015 23:51
Bash Colors in Python
class color:
PURPLE = '\033[95m'
CYAN = '\033[96m'
DARKCYAN = '\033[36m'
BLUE = '\033[94m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
@bmaupin
bmaupin / free-backend-hosting.md
Last active December 11, 2025 00:11
Free backend hosting
@intellectronica
intellectronica / 0.README.md
Last active December 11, 2025 00:10
Filez - Ad-Hoc File Sharing Using GitHub Pages

GitHub Pages File-Sharing

If you sometimes find yourself needing to share a file over HTTP, there are not many file-sharing solutions you can use.

This action works by publishing files via GitHub Pages behind an obscure prefix path. It updates the repository README with the URLs, so that you have links to the published files.

You can keep the repository secret, and the files are public but semi-secret, so you can share them without concern that other files will be discovered.

@jborean93
jborean93 / linux_print_argv.c
Last active December 11, 2025 00:09
Code that can be used to generate an executable that can print how it receives arguments
#include<stdio.h>
// gcc print_argv.c -o print_argv
int main(int argc, char *argv[])
{
int i;
for(i = 1;i < argc;i++)
{
printf("[%d] %s\n", i, argv[i]);